#header{
	width: 100%;
	height: 35px;
	background-color: #003778;
	color: #FFFFFF;
}

#header_logo{
	float: left;
}

#header_logo img{
	max-width: 40px;
	height: auto;
	margin-top: 5px;
	margin-left: 5px;
}

#header_language{
	float: right;
}

#header_language img{
	width: 25px;
	margin-top: 5px;
	margin-right: 12px;
	margin-left: 12px;
}

#boxes {
	width: 100%;
}

#boxes a{
	display: box;
	text-decoration: none;
}

#infobar{
	width: 100%;
	height: 35px;
	background-color: #012A5A;
	color: #FFFFFF;
}

#info_login{
	padding: 8px 5px;
	float: left;
}

#info_buttons{
	float: right;
}

#info_buttons img{
	width: 25px;
	margin-top: 5px;
	margin-right: 12px;
	margin-left: 12px;
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
 	#box {
		width: 100%;
		height: 80px;
		line-height: 80px;
		text-align: center;
		background-color: #003778;
		color: #FFFFFF;
		margin-top: 10px;
		font-size: 24px;
	}
	
	#box:hover{
		background-color: #012A5A;
	}
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
	#box {
		width: 100%;
		height: 80px;
		line-height: 80px;
		text-align: center;
		background-color: #003778;
		color: #FFFFFF;
		margin-top: 10px;
		font-size: 24px;
	}
	
	#box:hover{
		background-color: #012A5A;
	}
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
	#box {
		width: 100%;
		height: 80px;
		line-height: 80px;
		text-align: center;
		background-color: #003778;
		color: #FFFFFF;
		margin-top: 10px;
		font-size: 24px;
	}
	
	#box:hover{
		background-color: #012A5A;
	}
}

@media (min-width: 800px) and (max-width: 1280px) {
	#box {
		width: 100%;
		height: 80px;
		line-height: 80px;
		text-align: center;
		background-color: #003778;
		color: #FFFFFF;
		margin-top: 10px;
		font-size: 24px;
	}
	
	#box:hover{
		background-color: #012A5A;
	}
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	#box {
		width: 49%;
		height: 160px;
		line-height: 160px;
		text-align: center;
		background-color: #003778;
		color: #FFFFFF;
		margin-top: 10px;
		font-size: 24px;
		margin-right: 1%;
		float: left;
	}
	
	#box:hover{
		background-color: #012A5A;
	}
}

@media (min-width: 800px) and (max-width: 1280px) and (orientation: landscape) {
	#box {
		width: 49%;
		height: 160px;
		line-height: 160px;
		text-align: center;
		background-color: #003778;
		color: #FFFFFF;
		margin-top: 10px;
		font-size: 24px;
		margin-right: 1%;
		float: left;
	}
	
	#box:hover{
		background-color: #012A5A;
	}
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
	#box {
		width: 100%;
		height: 80px;
		line-height: 80px;
		text-align: center;
		background-color: #003778;
		color: #FFFFFF;
		margin-top: 10px;
		font-size: 24px;
	}
	
	#box:hover{
		background-color: #012A5A;
	}
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
	#box {
		width: 100%;
		height: 80px;
		line-height: 80px;
		text-align: center;
		background-color: #003778;
		color: #FFFFFF;
		margin-top: 10px;
		font-size: 24px;
	} 
	
	#box:hover{
		background-color: #012A5A;
	}
}

.login {
  	width: 300px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: auto;
}
.login h1 {
  	text-align: center;
  	color: #003778;
  	font-size: 24px;
  	padding: 10px 0 10px 0;
  	border-bottom: 1px solid #dee0e4;
}
.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 0px;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #003778;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] {
  	width: 250px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 10px;
  	padding: 0 15px;
}
.login form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
 	margin-top: 0px;
  	background-color: #003778;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
	background-color: #012A5A;
	transition: background-color 0.2s;
}

.button{
	width: 100%;
  	background-color: #003778;
  	cursor: pointer;
  	color: #ffffff;
  	transition: background-color 0.2s;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	margin-top: 20px;
}

.button:hover {
	background-color: #012A5A;
	transition: background-color 0.2s;
}

 /* Style inputs, select elements and textareas */
input[type=text], input[type=file], select, textarea{
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	resize: vertical;
}

/* Style the label to display next to the inputs */
label {
	padding: 12px 12px 12px 0;
	display: inline-block;
}

/* Style the submit button */
input[type=submit], input[type=button] {
	background-color: #003778;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	float: right;
	margin-top: 20px;
}

input[type="submit"]:hover, input[type="button"]:hover {
	background-color: #012A5A;
	transition: background-color 0.2s;
}

/* Style the container */
.container {
	border-radius: 5px;
	background-color: #ffffff;
	padding: 20px;
}

/* Floating column for labels: 11% width */
.col-9 {
	float: left;
	width: 9%;
	margin-top: 6px;
}

.col-9 input[type="button"] {
	background-color: #003778;
	color: white;
	cursor: pointer;
	float: left;
	display: box;
	width: 100%;
	height: 20px;
	padding: 0px;
	margin: 0px;
}

.col-9 p {
	text-align: center;
	padding: 0px;
	margin: 0px;
}

.col-9 img {
	display: inline;
	width: 20px;
	padding: 0px;
	margin: 0px;
}

/* Floating column for labels: 11% width */
.col-11 {
	float: left;
	width: 11%;
	margin-top: 6px;
}

/* Floating column for labels: 13% width */
.col-13 {
	float: left;
	width: 13%;
	margin-top: 6px;
}

.col-13 input[type="button"] {
	background-color: #003778;
	color: white;
	cursor: pointer;
	float: left;
	display: box;
	width: 100%;
	height: 20px;
	padding: 0px;
	margin: 0px;
}

.col-13 p {
	text-align: center;
	padding: 0px;
	margin: 0px;
}

.col-13 img {
	display: inline;
	width: 20px;
	padding: 0px;
	margin: 0px;
}

/* Floating column for labels: 25% width */
.col-25 {
	float: left;
	width: 25%;
	margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
	float: left;
	width: 75%;
	margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-100 {
	float: left;
	width: 100%;
	margin-top: 6px;
	text-align: left;
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

.row_table {
	border-bottom: 1px solid #012A5A;
	padding-bottom: 6px;
}

/* Clear floats after the columns */
.row_table:after {
	content: "";
	display: table;
	clear: both;
}

.row_table_head {
	border-bottom: 1px solid #012A5A;
	padding-bottom: 6px;
}

/* Clear floats after the columns */
.row_table_head:after {
	content: "";
	display: table;
	clear: both;
}

.filter{
	width: 100%;
	height: 20px;
	background-color: #012A5A;
}

.filter a{
	display: box;
	text-decoration: none;
	color: #FFFFFF;
	padding-top: 6px;
	padding-left: 6px;
}

.filter_auswahl{
	display: none;
	width: 100%;
	float: left;
	padding-bottom: 6px;
	border-bottom: 1px solid #012A5A;
}

.thead_description{
		display: none;
		float: left;
	}

.container_cam{
	margin-top: 20px;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
	form .col-9, form .col-11, form .col-13, form .col-25, form .col-75{
		width: 100%;
		margin-top: 6px;
		text-align: left;
	}
	
	.filter .col-9, .filter .col-11, .filter .col-13, .filter .col-25, .filter .col-75{
		width: 100%;
		margin-top: 6px;
		text-align: left;
	}
	
	.col-9, .col-11, .col-13, .col-25, .col-75{
		width: 100%;
		margin-top: 6px;
		text-align: right;
	}
	
	.row_table_head {
		displaY: none;
	}
	
	.col-9 p {
		text-align: left;
		padding: 0px;
		margin: 0px;
	}
	
	.col-13 p {
		text-align: left;
		padding: 0px;
		margin: 0px;
	}
	
	.thead_description{
		display: block;
	}
  
	input[type=submit], input[type=button] {
		width: 100%;
		margin-top: 20px;;  
	}
} 